home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol A-4 / (Vol A-4) Vol. A4.iso / Games / loa_and_the_island.swf / scripts / frame_29 / DoAction.as
Text File  |  2008-03-17  |  435b  |  22 lines

  1. if(newgame == true)
  2. {
  3.    if(_global.difficulty == "normal")
  4.    {
  5.       _global.health = 100;
  6.       _global.maxhealth = 100;
  7.       _global.lives = 5;
  8.    }
  9.    if(_global.difficulty == "easy")
  10.    {
  11.       _global.health = 500;
  12.       _global.maxhealth = 500;
  13.       _global.lives = 9;
  14.    }
  15.    if(_global.difficulty == "hard")
  16.    {
  17.       _global.health = 50;
  18.       _global.maxhealth = 50;
  19.       _global.lives = 0;
  20.    }
  21. }
  22.